home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Programming / vbcc / machines / amigappc / libsrc / math / modf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  170 b   |  13 lines

  1. #include <math.h>
  2.  
  3. double modf(double x,double *p)
  4. {
  5.     if(x<0){
  6.         *p=ceil(x);
  7.         return(*p-x);
  8.     }else{
  9.         *p=floor(x);
  10.         return(x-*p);
  11.     }
  12. }
  13.